document.getElementById('gameLarge').innerHTML = '

Crystal Battle

Match 3 spil med computeren som modstander

Crystal Battle er et match 3 spil, hvor du spiller mod computeren, der giver dig kamp til stregen.

Lignende spil

'; function StartGame(gameName) { document.getElementById(gameName + "GameDiv").style.display = "block"; document.getElementById(gameName + "PreviewDiv").style.display = "none"; } function embedGameHandler(doc, targetDiv) { if(doc.indexOf("script") == 0) { document.getElementById(targetDiv).innerHTML = ""; var cell = document.getElementById(targetDiv.replace("GameDiv", "Div")); var js = document.createElement('script'); js.setAttribute('type', 'text/javascript'); js.src = doc.replace("script", ""); cell.appendChild(js); } else document.getElementById(targetDiv).innerHTML = doc; } function plingpopup(url, id, width, height, resizable, showlocation, showstatus, showtoolbar, showscrollbars, showmenubar) { window.open( url, id, "width=" + width + ",height=" + height + ",resizable=" + resizable + ",location=" + showlocation + ",status=" + showstatus + ",toolbar=" + showtoolbar + ",scrollbars=" + showscrollbars + ",menubar=" + showmenubar ); }